home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
SOUND
/
SNDSGOOD.ARJ
/
C_EXMPL2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-06
|
315b
|
27 lines
#include <stdio.h>
#include <malloc.h>
#include "sg_c.h"
FILE *fp;
char far buffer[200];
main()
{
int i;
fp = fopen( "SND1.SND", "rb" );
fread( buffer, filelength( fileno( fp ) ), 1, fp );
fclose( fp );
installit();
dosound( buffer );
while( eventsleft() );
removeit();
}